type net/http.conn

18 uses

	net/http (current package)
		server.go#L253: type conn struct {
		server.go#L309: func (c *conn) hijacked() bool {
		server.go#L316: func (c *conn) hijackLocked() (rwc net.Conn, buf *bufio.ReadWriter, err error) {
		server.go#L424: 	conn             *conn
		server.go#L624: func (srv *Server) newConn(rwc net.Conn) *conn {
		server.go#L625: 	c := &conn{
		server.go#L648: 	conn *conn
		server.go#L970: func (c *conn) readRequest(ctx context.Context) (w *response, err error) {
		server.go#L1726: func (c *conn) finalFlush() {
		server.go#L1744: func (c *conn) close() {
		server.go#L1770: func (c *conn) closeWriteAndWait() {
		server.go#L1794: func (c *conn) setState(nc net.Conn, state ConnState, runHook bool) {
		server.go#L1815: func (c *conn) getState() (state ConnState, unixSec int64) {
		server.go#L1858: func (c *conn) serve(ctx context.Context) {
		server.go#L2721: 	activeConn map[*conn]struct{}
		server.go#L3158: func (s *Server) trackConn(c *conn, add bool) {
		server.go#L3162: 		s.activeConn = make(map[*conn]struct{})
		server.go#L3595: 	c *conn